crypto/tls.clientHandshakeStateTLS13.hello (field)
24 uses
crypto/tls (current package)
handshake_client.go#L372: hello: hello,
handshake_client_tls13.go#L27: hello *clientHelloMsg
handshake_client_tls13.go#L58: if hs.keyShareKeys == nil || hs.keyShareKeys.ecdhe == nil || len(hs.hello.keyShares) == 0 {
handshake_client_tls13.go#L68: if err := transcriptMsg(hs.hello, hs.transcript); err != nil {
handshake_client_tls13.go#L100: hs.hello = hs.echContext.innerHello
handshake_client_tls13.go#L110: if hs.hello.serverName == "" && hs.serverHello.serverNameAck {
handshake_client_tls13.go#L193: if !bytes.Equal(hs.hello.sessionId, hs.serverHello.sessionId) {
handshake_client_tls13.go#L203: selectedSuite := mutualCipherSuiteTLS13(hs.hello.cipherSuites, hs.serverHello.cipherSuite)
handshake_client_tls13.go#L249: hello := hs.hello
handshake_client_tls13.go#L315: if slices.ContainsFunc(hs.hello.keyShares, func(ks keyShare) bool {
handshake_client_tls13.go#L376: hs.hello.keyShares = hello.keyShares
handshake_client_tls13.go#L382: if err := computeAndUpdateOuterECHExtension(hs.hello, hs.echContext.innerHello, hs.echContext, false); err != nil {
handshake_client_tls13.go#L386: hs.hello = hello
handshake_client_tls13.go#L389: if _, err := hs.c.writeHandshakeRecord(hs.hello, hs.transcript); err != nil {
handshake_client_tls13.go#L436: if !slices.ContainsFunc(hs.hello.keyShares, func(ks keyShare) bool {
handshake_client_tls13.go#L447: if int(hs.serverHello.selectedIdentity) >= len(hs.hello.pskIdentities) {
handshake_client_tls13.go#L452: if len(hs.hello.pskIdentities) != 1 || hs.session == nil {
handshake_client_tls13.go#L529: err = c.config.writeKeyLog(keyLogLabelClientHandshake, hs.hello.random, clientSecret)
handshake_client_tls13.go#L534: err = c.config.writeKeyLog(keyLogLabelServerHandshake, hs.hello.random, serverSecret)
handshake_client_tls13.go#L559: if err := checkALPN(hs.hello.alpnProtocols, encryptedExtensions.alpnProtocol, c.quic != nil); err != nil {
handshake_client_tls13.go#L583: if !hs.hello.earlyData && encryptedExtensions.earlyData {
handshake_client_tls13.go#L587: if hs.hello.earlyData && !encryptedExtensions.earlyData {
handshake_client_tls13.go#L736: err = c.config.writeKeyLog(keyLogLabelClientTraffic, hs.hello.random, hs.trafficSecret)
handshake_client_tls13.go#L741: err = c.config.writeKeyLog(keyLogLabelServerTraffic, hs.hello.random, serverSecret)